home *** CD-ROM | disk | FTP | other *** search
/ Trusted Irix /B 4.0.4 / Trusted-Irix B-4.0.1.iso / dist / eoe1.idb / etc / stdcshrc.z / stdcshrc
Text File  |  1992-04-03  |  533b  |  24 lines

  1. # This is the default standard .cshrc provided to csh users.
  2. # They are expected to edit it to meet their own needs.
  3. #
  4. # The commands in this file are executed each time a new csh shell
  5. # is started.
  6. #
  7. # $Revision: 1.6 $
  8. #
  9.  
  10. # list directories in columns
  11. alias ls 'ls -C'
  12.  
  13. # Remember last 100 commands
  14. set history = 100
  15.  
  16. # For interactive shells, set the prompt to show the host name and event number.
  17. if ( $?prompt ) then
  18.     if ( -o /bin/su ) then
  19.         set prompt="`hostname -s` \!# "
  20.     else
  21.         set prompt="`hostname -s` \!% "
  22.     endif
  23. endif
  24.